home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / selfstorage.swf / scripts / DefineButton2_39 / BUTTONCONDACTION on(release).as
Text File  |  2008-03-17  |  247b  |  14 lines

  1. on(release){
  2.    if(_root.int_soundon == 1)
  3.    {
  4.       stopAllSounds();
  5.       _root.int_soundon = 0;
  6.       _root.soundsymbol.gotoAndStop(3);
  7.    }
  8.    else
  9.    {
  10.       _root.int_soundon = 1;
  11.       _root.soundsymbol.gotoAndStop(1);
  12.    }
  13. }
  14.